home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 3 / Gold Medal Software - Volume 3 (Gold Medal) (1994).iso / database / sch110a.arj / DMMEMO.PRG < prev    next >
Text File  |  1993-02-23  |  499b  |  22 lines

  1. *****
  2. * A sample programmable text editor.
  3. *****
  4.  
  5. *****
  6. * "dmmemof" is the UDF() function that CUSTOM uses to control the 
  7. * editor...
  8. *****
  9. superbox(00,00,24,79,.t.,"▓",.f.)
  10. superbox(04,09,21,71,.t.,"",.t.)
  11. say(02,25,"    The Sample Text Editor    ")
  12. setcursor(.t.)
  13. mv_udfname="dmmemof"
  14. mvtext=memoedit(memoread("dmtext.txt"),5,10,20,70,.t.,"CUSTOM") 
  15.  
  16. *****
  17. * if desired, you can write the text back to disk with:
  18. * memowrit("dmtext.txt",mvtext)
  19. *****
  20. setcursor(.f.)
  21. return
  22.